home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form NewMessage
- Caption = "New Message"
- ClientHeight = 8460
- ClientLeft = 5745
- ClientTop = 2190
- ClientWidth = 8070
- Height = 8865
- Left = 5685
- LinkTopic = "Form2"
- LockControls = -1 'True
- ScaleHeight = 8460
- ScaleWidth = 8070
- Top = 1845
- Width = 8190
- Begin VB.TextBox Body
- Height = 6480
- Left = 180
- MultiLine = -1 'True
- ScrollBars = 3 'Both
- TabIndex = 6
- Top = 1680
- Width = 7500
- End
- Begin VB.CommandButton Cancel
- Cancel = -1 'True
- Caption = "Cancel"
- Height = 375
- Left = 2100
- TabIndex = 5
- Top = 870
- Width = 945
- End
- Begin VB.CommandButton Send
- Caption = "Send"
- Height = 390
- Left = 1080
- TabIndex = 4
- Top = 855
- Width = 975
- End
- Begin VB.TextBox Subject
- Height = 315
- Left = 1080
- TabIndex = 3
- Top = 465
- Width = 6225
- End
- Begin VB.TextBox Newsgroups
- Height = 315
- Left = 1080
- TabIndex = 1
- Top = 90
- Width = 6225
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Caption = "Subject:"
- Height = 225
- Index = 1
- Left = 15
- TabIndex = 2
- Top = 495
- Width = 975
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Caption = "Newsgroups:"
- Height = 225
- Index = 0
- Left = 45
- TabIndex = 0
- Top = 135
- Width = 960
- End
- Begin VB.Line Line1
- BorderColor = &H00808080&
- Index = 1
- X1 = 0
- X2 = 9870
- Y1 = 1320
- Y2 = 1320
- End
- Begin VB.Line Line1
- BorderColor = &H00FFFFFF&
- Index = 0
- X1 = 0
- X2 = 6645
- Y1 = 1350
- Y2 = 1350
- End
- Attribute VB_Name = "NewMessage"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- ' For spacing during Form_Resize
- Private Const Margin = 2
- Private Sub Cancel_Click()
- Unload Me
- End Sub
- Private Sub Form_Resize()
- Line1(0).X1 = 0
- Line1(1).X1 = 0
- Line1(0).X2 = Me.ScaleWidth
- Line1(1).X2 = Me.ScaleWidth
- NewsGroups.Width = Me.ScaleWidth - NewsGroups.Left - Margin
- Subject.Width = NewsGroups.Width
- body.Left = Margin
- body.Width = Me.ScaleWidth - 2 * Margin
- body.Top = Line1(0).Y2 + Margin * 5
- body.Height = Me.ScaleHeight - body.Top - Margin * 5
- End Sub
- Private Sub Send_Click()
- Form1.News1.Subject = Subject.Text
- Form1.News1.BodyText = body.Text
- Form1.News1.NewsGroups = NewsGroups.Text
- Form1.Flag = 1
- Unload Me
- End Sub
-